home *** CD-ROM | disk | FTP | other *** search
/ Game.EXE 2005 November / Game.EXE_11_2005_DVD.iso / Flash Games / Robo Farmer / robofarmer.swf / scripts / DefineButton2_751 / BUTTONCONDACTION on(press).as next >
Encoding:
Text File  |  2005-09-23  |  293 b   |  18 lines

  1. on(press){
  2.    if(_root.pspeed >= 14)
  3.    {
  4.       return undefined;
  5.    }
  6.    if(_root.money <= 299)
  7.    {
  8.       return undefined;
  9.    }
  10.    if(_root.money >= 300)
  11.    {
  12.       _root.money -= 300;
  13.       _root.pspeed += 1;
  14.       _root.sndshutter.start();
  15.       return undefined;
  16.    }
  17. }
  18.